.dotmap {
  overflow: hidden;
  margin: auto;
  z-index: 1;
  width: 2500px;
  -webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}
.test{
  position: absolute;
  display: flex;
}

.dotmap .row:after {
  content: "";
  display: table;
  clear: both;
}

.dot {
  
  display: inline-block;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  background: #ccc;
  margin: 4px;
}

.minimal .water {
  background: transparent;
}

.minimal .north-america, .minimal .south-america, .minimal .europe, .minimal .africa, .minimal .asia, .minimal .australia {
  background: #b9b9b942;
}

@-webkit-keyframes water {
  0% {
    background: lightcyan;
  }
  50% {
    background: paleturquoise;
  }
  100% {
    background: lightcyan;
  }
}

@keyframes water {
  0% {
    background: lightcyan;
  }
  50% {
    background: paleturquoise;
  }
  100% {
    background: lightcyan;
  }
}

@media screen and (max-width: 600px) {
  .test {
    left: -500px !important;
  }
}
/*# sourceMappingURL=map.css.map */